Telegram Group & Telegram Channel
Examples :

fruits = ['orange', 'apple', 'pear', 'banana', 'kiwi', 'apple', 'banana']

#gives_count_of_apples
fruits.count('apple')
2

fruits.count('tangerine')
0

#to_get_index_of_banana
fruits.index('banana')
3

#Find_next_banana_starting_a_position_4
fruits.index('banana', 4)
6

#to_reverse_fruits_list
fruits.reverse()
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange']

#to_add_item_at_the_end_of_the_list
fruits.append('grape')
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange', 'grape']

#sort_the_fruits_list
fruits.sort()
fruits
['apple', 'apple', 'banana', 'banana', 'grape', 'kiwi', 'orange', 'pear']

#to_delete_the_last_item_in_the_list
fruits.pop()
'pear'

Share and Support @python_codes



tg-me.com/python_codes/105
Create:
Last Update:

Examples :

fruits = ['orange', 'apple', 'pear', 'banana', 'kiwi', 'apple', 'banana']

#gives_count_of_apples
fruits.count('apple')
2

fruits.count('tangerine')
0

#to_get_index_of_banana
fruits.index('banana')
3

#Find_next_banana_starting_a_position_4
fruits.index('banana', 4)
6

#to_reverse_fruits_list
fruits.reverse()
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange']

#to_add_item_at_the_end_of_the_list
fruits.append('grape')
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange', 'grape']

#sort_the_fruits_list
fruits.sort()
fruits
['apple', 'apple', 'banana', 'banana', 'grape', 'kiwi', 'orange', 'pear']

#to_delete_the_last_item_in_the_list
fruits.pop()
'pear'

Share and Support @python_codes

BY Python Codes


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/python_codes/105

View MORE
Open in Telegram


Python Codes Telegram | DID YOU KNOW?

Date: |

Tata Power whose core business is to generate, transmit and distribute electricity has made no money to investors in the last one decade. That is a big blunder considering it is one of the largest power generation companies in the country. One of the reasons is the company's huge debt levels which stood at ₹43,559 crore at the end of March 2021 compared to the company’s market capitalisation of ₹44,447 crore.

Telegram Be The Next Best SPAC

I have no inside knowledge of a potential stock listing of the popular anti-Whatsapp messaging app, Telegram. But I know this much, judging by most people I talk to, especially crypto investors, if Telegram ever went public, people would gobble it up. I know I would. I’m waiting for it. So is Sergei Sergienko, who claims he owns $800,000 of Telegram’s pre-initial coin offering (ICO) tokens. “If Telegram does a SPAC IPO, there would be demand for this issue. It would probably outstrip the interest we saw during the ICO. Why? Because as of right now Telegram looks like a liberal application that can accept anyone - right after WhatsApp and others have turn on the censorship,” he says.

Python Codes from sa


Telegram Python Codes
FROM USA